home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / FPSE_src / include / bios.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-01-01  |  300 b   |  15 lines

  1. #ifndef BIOS_H
  2. #define BIOS_H
  3.  
  4. int biosprint(int pc);
  5. int bios_init(void);
  6.  
  7. void bios_InitHeap(void *block, UINT32 size);
  8. void *bios_malloc(UINT32 size);
  9. void *bios_calloc(UINT32 size, UINT32 n);
  10. void bios_free(void *ptr);
  11. void *bios_realloc(void *ptr, UINT32 size);
  12.  
  13. int exception_handler();
  14.  
  15. #endif